home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ For TASM / CPUID.PAK / MAKEFILE < prev   
Encoding:
Text File  |  1996-02-21  |  372 b   |  20 lines

  1. #  Makefile for cpuid example.
  2. #
  3. #  Copyright (c) 1996 by Borland International, Inc.
  4. #
  5. #  Usage:   make -B         # cpuid example
  6. #           make -B -DDEBUG # cpuid example with debug info
  7. #
  8.  
  9. !if $d(DEBUG)
  10. TASMDEBUG=/zi
  11. LINKDEBUG=/v
  12. !else
  13. TASMDEBUG=
  14. LINKDEBUG=
  15. !endif
  16.  
  17. cpuid.exe:
  18.       tasm  $(TASMDEBUG) cpuid.asm
  19.       tlink $(LINKDEBUG) cpuid.obj
  20.